{% extends 'base.html' %} {% load static %} {% block title %}My Profile{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Profile Picture

{{ user.get_full_name|default:user.username }}

{% if user.is_staff %} Staff {% endif %} {% if user.is_superuser %} Admin {% endif %}

Personal Information
Username

{{ user.username }}

Email

{{ user.email }}

Joined

{{ user.date_joined|date:"F d, Y" }}

Quick Stats

{{ user.appointments.count|default:0 }}

Appointments

{{ user.tasks.count|default:0 }}

Tasks

Recent Activity
View All
{% if recent_activities %}
{% for activity in recent_activities %}
{{ activity.title }}
{{ activity.timestamp|timesince }} ago

{{ activity.description }}

{% if activity.link %} View {% endif %}
{% endfor %}
{% else %}

No recent activity to display.

{% endif %}
Upcoming Appointments
View All
{% if upcoming_appointments %}
{% for appt in upcoming_appointments %} {% endfor %}
Service Date & Time Status Actions
{{ appt.service.name }} {{ appt.start_time|date:"M d, Y H:i" }} {{ appt.get_status_display }} View
{% else %}

No upcoming appointments.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}